blob: eba5e94889d2c954daf54a0fc76ccd3676a43da3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import { Separator } from "@/components/ui/separator"
import { AccountForm } from "@/components/settings/account-form"
export default function SettingsAccountPage() {
return (
<div className="space-y-6">
<div>
<h3 className="text-lg font-medium">Account</h3>
{/* <p className="text-sm text-muted-foreground">
Update your account settings. Set your preferred language and
timezone.
</p> */}
</div>
<Separator />
<AccountForm />
</div>
)
}
|